home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mntlib25 / alglobal.c < prev    next >
C/C++ Source or Header  |  1992-05-31  |  511b  |  20 lines

  1. /*
  2.  * lineA globals for both inline and non-inline lineA bindings
  3.  */
  4. #include <linea.h>
  5.     /* global vars */
  6. /* Pointer to line a parameter block returned by init     */
  7.  __LINEA *__aline;
  8.  
  9. /* Array of pointers to the three system font  headers 
  10.    returned by init (in register A1)                   */
  11.  __FONT  **__fonts;
  12.  
  13. /* Array of pointers to the 16 line a functions returned
  14.    by init (in register A2) only valid in ROM'ed TOS     */
  15. #ifdef __STDC__
  16.  short  (**__funcs)(void);
  17. #else
  18.  short  (**__funcs)();
  19. #endif
  20.